home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 019a / amac40.zip / RING@F1.QM < prev    next >
Text File  |  1991-08-03  |  1KB  |  34 lines

  1. *                               RING@F1.QM
  2. *                    [ See RINGxx.QM for discussion ]
  3. *                             August 3, 1991
  4. * ----------------------------------------------------------------------
  5. * @(f1)  Load Previously Saved List of Files
  6. * ----------------------------------------------------------------------
  7.  
  8. * This macro loads the list of files previously saved with @2.  This is
  9. * a modification to a macro written by Kyle Watkins of SemWare to load
  10. * a list of files and macro @2 above.
  11.  
  12. * If this macro is the first macro in a file named 'ring@f1.qm', the
  13. * following batch file will load from the command line the list of
  14. * files previously saved with @2, with the file you were editing when
  15. * @f2 was invoked, loaded:
  16.  
  17. *                   q.exe  qstat  /Ering@f1.mac
  18.  
  19. @f1 macrobegin
  20.     editfile "qstat" return     * Load file list
  21.     EndFile BegLine             * Start at last line
  22.   REPEAT:                       *
  23.     MarkLine Copy               * Grab this name
  24.     EditFile                    * Get ready to load
  25.     CurrentFilename " "         * To force return *here*
  26.     Paste Return                * Paste file name & do it!
  27.     CursorUp                    * More lines above?
  28.     JTrue REPEAT:               * If yes, repeat.
  29.     killfile quit               * Kill/quit list
  30.     EditFile Paste Return       * Load first file in list
  31. *
  32. * 35 bytes Fri  08-02-1991  11:50:42 (TH @f1)
  33.  
  34.